TEE's or data taps. Data can be read by more than one file handle
copy AWNPipe:test/t ram:test3
copy ram:test AWNPipe:test/h
copy AWNPipe:test ram:test2
A tap is a extra read handle on a pipe connection. If the pipe is not yet created the tap will wait for it to exist. If a tap is not opened BEFORE any data is written into the pipe, it will miss data. Taps are useful to listen in on interactive (2way) pipes as they read the data written to both ends of the pipe.
R option
========
Read a file. The second end of a pipe can be connected to file automatically. The file name is given after the 'R'.
copy AWNPipe:test/h/rram:test ram:test2
copy ram:test AWNPipe:test/h
copy AWNPipe:test ram:test2
Both of these copy a file from ram:test through a modifying pipe into a file ram:test2 .
W option
========
Write a file. The second end of a pipe can be connected to file automatically. The file name is given after the 'W'.
copy ram:test AWNPipe:test/h/wram:test2
copy ram:test AWNPipe:test/h
copy AWNPipe:test ram:test2
Both of these copy a file from ram:test through a modifying pipe into a file ram:test2 .
L option
========
Read AND write to an interactive file such as con: . The interactive file name is given after the 'L'.
This is useful to be able to 'tap' into a two way conversation at a con: or other interactive file handle.
AWNPipe:test/Lcon:////mycon/
V option
========
This option opens a pipe directly to the clipboard.
type AWNPipe:test/v
You may also specify a clipboard unit, defaults to 0 (the primary clip).
To access clipboard unit 5
type AWNPipe:test/v5
C option
========
This option allows you to set the clipboard
echo "set this as the clip" >AWNPipe:test/c
You may also specify a clipboard unit, defaults to 0 (the primary clip)
To set clipboard unit 5
echo "set this as the clip" >AWNPipe:test/c5
E option
========
execute a command . The file name is given after the 'E'. A command is executed with the pipe name as an argument. The pipe name replaces a '%' or is placed at the end. You CAN NOT use a '/' instead of a '%' !.